@rubytech/create-realagent 1.0.860 → 1.0.862
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/payload/platform/plugins/cloudflare/PLUGIN.md +1 -1
- package/payload/platform/scripts/redact-install-logs.sh +9 -7
- package/payload/server/public/assets/{admin-4cZM7db3.js → admin-CCML_l4E.js} +7 -7
- package/payload/server/public/index.html +1 -1
- package/payload/platform/scripts/setup.sh +0 -195
package/package.json
CHANGED
|
@@ -51,7 +51,7 @@ The agent loads these references on demand via `plugin-read` as the conversation
|
|
|
51
51
|
|
|
52
52
|
### UI contract
|
|
53
53
|
|
|
54
|
-
|
|
54
|
+
VNC surfacing is post-navigation, never on form submit. Two sites call `useDeviceUrlActions().onShowVnc()` and both fire only after a successful CDP nav: `DeviceUrlBlock` (tool-output URL clicks) and `ActionLogPanel.handleOauthRespawn` (the "Re-open on Pi browser" button rendered when an OAuth URL appears in the action log). The form (`cloudflare-setup-form`) must NOT call `onShowVnc()` on POST resolve — pre-warming the fullscreen overlay before the OAuth URL is on the brand chromium hides the form, the ActionLogPanel, and the very button operators must click. The `[browser-viewer] event=mount surface="overlay"` line must appear within 5 s of `[device-url:click] navigateResult=ok`, never before.
|
|
55
55
|
|
|
56
56
|
## Identity model
|
|
57
57
|
|
|
@@ -2,18 +2,20 @@
|
|
|
2
2
|
# Existing-pi install-log redaction (Task 744).
|
|
3
3
|
#
|
|
4
4
|
# Idempotent one-shot remediation for Pis that completed installation BEFORE
|
|
5
|
-
# the install-log redaction landed at index.ts:152
|
|
6
|
-
# `install-*.log` in the configured logs directory and replaces
|
|
7
|
-
# `set-initial-password ...<secret>` payload with
|
|
8
|
-
# [REDACTED]`. Re-running the script is safe —
|
|
9
|
-
# match the source pattern, so no further
|
|
5
|
+
# the install-log redaction landed at packages/create-maxy/src/index.ts:152.
|
|
6
|
+
# Scans every `install-*.log` in the configured logs directory and replaces
|
|
7
|
+
# every literal `set-initial-password ...<secret>` payload with
|
|
8
|
+
# `set-initial-password [REDACTED]`. Re-running the script is safe —
|
|
9
|
+
# already-redacted lines do not match the source pattern, so no further
|
|
10
|
+
# edits occur.
|
|
10
11
|
#
|
|
11
12
|
# Source patterns covered:
|
|
12
13
|
# 1. TS installer (packages/create-maxy/src/index.ts:152) — "[ISO] > sudo
|
|
13
14
|
# neo4j-admin dbms set-initial-password -- <secret>" or any args after
|
|
14
15
|
# "set-initial-password" (positional or "--" delimited).
|
|
15
|
-
# 2.
|
|
16
|
-
#
|
|
16
|
+
# 2. Legacy bash installer (removed) — "+ sudo neo4j-admin dbms
|
|
17
|
+
# set-initial-password <secret>" if bash -x had been on. Pattern kept
|
|
18
|
+
# for historical install logs from before the bash installer's removal.
|
|
17
19
|
#
|
|
18
20
|
# A trailing marker line `[redact-install-logs] redacted=<n> file=<path>` is
|
|
19
21
|
# appended to each modified log so subsequent reads can identify which logs
|